projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3802fb5
)
Move provide form to end; nfc.
author
Thien-Thi Nguyen
<ttn@gnuvola.org>
Mon, 27 Aug 2007 01:29:41 +0000
(
01:29
+0000)
committer
Thien-Thi Nguyen
<ttn@gnuvola.org>
Mon, 27 Aug 2007 01:29:41 +0000
(
01:29
+0000)
lisp/emacs-lisp/avl-tree.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/avl-tree.el
b/lisp/emacs-lisp/avl-tree.el
index 75ec86c0d0ec706d8ab5456502c96b8f31c71022..604147f618ebfe89eb9841596cd9af7b3cec85aa 100644
(file)
--- a/
lisp/emacs-lisp/avl-tree.el
+++ b/
lisp/emacs-lisp/avl-tree.el
@@
-101,7
+101,6
@@
(defun elib-stack-create () (list))
(defmacro elib-stack-push (stack object) `(push ,object ,stack))
(defmacro elib-stack-pop (stack) `(pop ,stack))
-(provide 'avl-tree)
;;; ================================================================
;;; Functions and macros handling an AVL tree node.
@@
-567,4
+566,6
@@
If there is no such element in the tree, the value is nil."
"Clear the avl tree TREE."
(elib-node-set-left (elib-avl-dummyroot tree) nil))
+(provide 'avl-tree)
+
;;; avltree.el ends here